home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / PluginSRC_EvenMore / evenmorelib.e < prev    next >
Encoding:
Text File  |  2002-03-13  |  1.2 KB  |  60 lines

  1. /*
  2.    EvenMore library
  3.  
  4.    Author: Chris Perver
  5.    Copyright (c) 2001
  6.  
  7. This is the main library for EvenMore. All this basically is is an empty
  8. plugin, which is used as a template to open your own custom plugins.
  9. The procedures MUST be kept in the same name in the same order.
  10. You can add your own procedures, but these must be internal to this
  11. plugin.
  12.  
  13. This layout may be subject to change!!!
  14.  
  15. When making your own plugin, change the LIBRARY name/version and the
  16. description to your own names!
  17.  
  18. */
  19.  
  20.  
  21. OPT REG=5
  22.  
  23.  
  24.  
  25. LIBRARY 'evenmore.library',1,1,'EvenMore Master Library 1.1' IS em_main, em_end, em_info, em_pluginid, em_begin, em_format
  26.  
  27. MODULE '*epo'
  28.  
  29. -> *** STANDARD PROCS FOR PLUGINS
  30.  
  31.  
  32. -> *** CALLED TO RUN THE PLUGIN MODULE
  33.  
  34. PROC em_begin(epo:PTR TO em_pluginobj)
  35. ENDPROC FALSE, FALSE
  36.  
  37. PROC em_main(epo:PTR TO em_pluginobj)
  38. ENDPROC FALSE
  39.  
  40. -> *** NOT USED YET
  41.  
  42. PROC em_end()      IS EMPTY
  43.  
  44. -> *** DESCRIPTION TEXT
  45.  
  46. PROC em_info()     IS 'EvenMore Master Library 1'
  47.  
  48. -> *** PLUGIN ID
  49. -> *** CURRENT LIST OF ID's
  50. ->     "FILE"  -  Tells EvenMore this is a file type plugin to convert text
  51.  
  52. PROC em_pluginid() IS "FILE"
  53.  
  54. -> *** USED ON OPENING/CLOSING OF THE LIBRARY
  55.  
  56. PROC em_format()   IS EMPTY
  57.  
  58. PROC main()  IS EMPTY
  59. PROC close() IS EMPTY
  60.